home *** CD-ROM | disk | FTP | other *** search
Visual Basic class definition | 2001-03-29 | 624 b | 34 lines |
- VERSION 1.0 CLASS
- BEGIN
- MultiUse = -1 'True
- Persistable = 0 'NotPersistable
- DataBindingBehavior = 0 'vbNone
- DataSourceBehavior = 0 'vbNone
- MTSTransactionMode = 0 'NotAnMTSObject
- END
- Attribute VB_Name = "clsChildFile"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = True
- Attribute VB_PredeclaredId = False
- Attribute VB_Exposed = False
- Option Explicit
-
- 'The path of the file
- Dim m_strPath As String
- '
-
- Public Property Get Path() As String
-
- Path = m_strPath
-
- End Property
-
- Public Property Let Path(v_strPath As String)
-
- m_strPath = v_strPath
-
- End Property
-
-
-
-